home *** CD-ROM | disk | FTP | other *** search
/ cyber.net interactivo 3 / inter@ivo 1996-04.iso / cybint3 / bin / lou.dxr / 00041.ls < prev    next >
Encoding:
Text File  |  1996-03-22  |  788 b   |  35 lines

  1. on exitFrame
  2.   if rollOver(2) then
  3.     if the visible of sprite 2 = 0 then
  4.       sound playFile 2, "..\som\reedd.wav"
  5.       set the visible of sprite 2 to 1
  6.     end if
  7.   else
  8.     set the visible of sprite 2 to 0
  9.   end if
  10.   if rollOver(3) then
  11.     if the visible of sprite 3 = 0 then
  12.       sound playFile 2, "..\som\reedd.wav"
  13.       set the visible of sprite 3 to 1
  14.     end if
  15.   else
  16.     set the visible of sprite 3 to 0
  17.   end if
  18.   go(the frame)
  19. end
  20.  
  21. on mouseUp
  22.   if rollOver(2) then
  23.     set the visible of sprite 2 to 1
  24.     set the visible of sprite 3 to 1
  25.     sound playFile 2, "..\som\reedd.wav"
  26.     go("Slide")
  27.   end if
  28.   if rollOver(3) then
  29.     set the visible of sprite 2 to 1
  30.     set the visible of sprite 3 to 1
  31.     sound playFile 2, "..\som\reedd.wav"
  32.     go("Ecr5")
  33.   end if
  34. end
  35.